/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= VARIABLES ================= */
:root {
  /* Light Mode */
  --primary: #003366;
  --accent: #d52b1e;
  --text: #1a1a1a;
  --text-light: #6c757d;
  --bg: #ffffff;
  --bg-light: #f5f7fa;
  --border: #e0e0e0;
  --card-bg: #ffffff;
  --overlay: rgba(0, 0, 0, 0.45);
  --footer-bg: #1e3a5f;
}

body.dark-mode {
  /* Dark Mode */
  --primary: #ffffff;
  --accent: #ff6b6b;
  --text: #e0e0e0;
  --text-light: #a0a0a0;
  --bg: #121212;
  --bg-light: #1e1e1e;
  --border: #333333;
  --card-bg: #1e1e1e;
  --overlay: rgba(0, 0, 0, 0.6);
  --footer-bg: #0f172a;
}

/* Dark mode overrides */
body.dark-mode .theme-toggle::before {
  background: #333;
}

body.dark-mode section {
  background: var(--bg);
}

body.dark-mode .card,
body.dark-mode .news-card,
body.dark-mode .product-card {
  background: var(--card-bg);
  border-color: var(--border);
}

body.dark-mode .hero-slider,
body.dark-mode .company-intro,
body.dark-mode .history-horizontal {
  background: var(--bg);
}

body.dark-mode .footer-inner {
  background: var(--footer-bg);
}

body.dark-mode .site-header {
  background: var(--bg);
  border-bottom-color: var(--border);
}

body.dark-mode .main-nav {
  background: var(--bg);
  border-bottom-color: var(--border);
}

body.dark-mode .nav-menu > li > a {
  color: var(--text);
}

body.dark-mode .nav-arrow {
  color: var(--text);
}

body.dark-mode .lang-switch a {
  color: var(--text);
}

body.dark-mode .lang-switch a:hover {
  color: var(--accent);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode p,
body.dark-mode span,
body.dark-mode div {
  color: var(--text);
}

body.dark-mode a {
  color: var(--text);
}

body.dark-mode a:hover {
  color: var(--accent);
}

/* ================= BASE ================= */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
  height: 48px;
}

.logo-img {
  max-height: 100%;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand a {
  display: block;
  max-width: 180px;
  height: auto;
}

/* ================= HEADER TOOLS ================= */
.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.lang-switch a {
  color: var(--text);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.lang-switch a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-switch .lang-en {
  font-weight: bold;
}

.lang-switch a {
  color: var(--text);
  text-decoration: none;
  font-weight: normal;
  transition: color 0.2s ease;
}

.lang-switch a:hover {
  color: var(--accent);
}

.lang-switch .lang-en {
  font-weight: bold;
}

.theme-toggle {
  width: 48px;
  height: 24px;
  border-radius: 12px;
  background: #e0e0e0;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

body.dark-mode .theme-toggle {
  background: var(--accent);
}

body.dark-mode .theme-toggle::before {
  transform: translateX(24px);
}

.search-toggle,
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s ease;
  color: var(--primary);
}

.search-toggle {
  font-size: 20px;
}

.menu-toggle {
  font-size: 24px;
  display: none;
}

.search-toggle:hover,
.menu-toggle:hover {
  background: rgba(0, 51, 102, 0.1);
}

body.dark-mode .search-toggle,
body.dark-mode .menu-toggle {
  color: var(--text);
}

body.dark-mode .search-toggle:hover,
body.dark-mode .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .brand .logo-img {
    max-width: 120px;
  }

  .header-tools {
    gap: 12px;
  }

  .lang-switch a {
    padding: 2px 6px;
    font-size: 13px;
  }

  .theme-toggle {
    width: 40px;
    height: 20px;
  }

  .theme-toggle::before {
    width: 16px;
    height: 16px;
  }

  body.dark-mode .theme-toggle::before {
    transform: translateX(20px);
  }
}

/* ================= NAVBAR ================= */
.main-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0 32px;
}

.nav-item {
  position: relative;
}

.nav-menu > li > a {
  color: var(--text);
  padding: 18px 0;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-menu > li > a:hover {
  color: var(--accent);
}

.nav-arrow {
  margin-left: 10px;
  font-size: 12px;
  color: var(--text);
}

.nav-item:hover .nav-arrow {
  transform: rotate(0deg);
}

/* Submenu (Desktop) */
.sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  min-width: 220px;
  padding: 10px 0;
  list-style: none;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 999;
  border: 1px solid var(--border);
}

.sub-nav li a {
  padding: 12px 20px;
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.sub-nav li a:hover {
  background: var(--bg-light);
  color: var(--accent);
}

.nav-item:hover > .sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Tablet Adjustments */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 20px;
    padding: 0 24px;
  }

  .nav-menu > li > a {
    font-size: 14px;
    padding: 16px 0;
  }

  .sub-nav {
    min-width: 200px;
  }
}

/* Mobile Menu */
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 992px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    z-index: 1000;
    display: none;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }

  .main-nav.active {
    display: block;
  }

  .site-header {
    pointer-events: none;
  }

  .site-header * {
    pointer-events: auto;
  }
}

@media (max-width: 800px) {
  .nav-menu {
    flex-direction: column;
    gap: 1px;
    padding: 0;
  }

  .nav-menu > li > a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
  }

  .sub-nav {
    position: static;
    box-shadow: none;
    padding-left: 16px;
    margin-top: 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
  }

  .nav-item.open > .sub-nav {
    display: block;
  }

  .sub-nav li a {
    font-size: 12px;
    padding: 4px 0;
    color: var(--accent);
  }
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide {
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Tombol Navigasi */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.hero-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* Indikator */
.hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: white;
}

/* Responsif */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ================= COMPANY INTRO ================= */
.company-intro {
  padding: 40px 20px;
  background: var(--bg-light);
}

.intro-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}

.intro-text .subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
}

.intro-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background: #000;
}

.intro-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 900px) {
  .intro-container {
    grid-template-columns: 1fr;
  }

  .intro-text {
    text-align: center;
  }
}

/* ================= INFO SECTION ================= */
.info-section {
  background: var(--bg);
  padding: 30px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.info-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  border: 1px solid var(--border);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #8b0000, #d52b1e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.35s ease;
}

body.dark-mode .icon-box {
  background: linear-gradient(135deg, #3399ff, #66b2ff);
}

.icon-box i {
  font-size: 30px;
  color: #fff;
}

.info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.info-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Responsive for Info Section */
@media (max-width: 768px) {
  .info-section {
    padding: 20px 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-card {
    padding: 24px 20px;
  }

  .info-card h3 {
    font-size: 18px;
  }

  .info-card p {
    font-size: 14px;
  }
}

/* ================= SOLUTIONS SECTION ================= */
.solutions-section {
  padding: 30px 0;
  background: var(--bg-light);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solutions-content h2 {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.solutions-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: #9a1e02;
  transform: translateX(4px);
}

.solutions-image {
  border-radius: 20px;
  overflow: hidden;
  max-height: 400px;
}

.solutions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ================= PRODUCTS SECTION ================= */
.products-section {
  padding: 40px 0 20px;
  background: var(--bg);
}

.products-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.products-label {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: inline-block;
}

.products-title {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}

.products-desc {
  font-size: 1rem;
  color: var(--accent);
  line-height: 1.6;
}

/* ================= PRODUCTS SLIDER ================= */
.products-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.products-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.products-slide {
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}

.products-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.products-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.products-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 80px;
  color: #ffffff;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.project-year {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.9rem;
  padding: 4px 16px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.products-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.project-spec {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 600px;
}

.products-content .btn-primary {
  background: var(--accent);
}

.products-content .btn-primary:hover {
  background: #b82419;
}

/* Tombol Navigasi */
.products-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.products-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.products-prev {
  left: 30px;
}

.products-next {
  right: 30px;
}

/* Indikator */
.products-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.products-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-indicators .indicator.active,
.products-indicators .indicator:hover {
  background: white;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .products-slider {
    height: 450px;
  }
  
  .products-content {
    padding: 50px 60px;
  }
  
  .products-content h3 {
    font-size: 2rem;
  }
  
  .project-spec {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .products-slider {
    height: 400px;
  }
  
  .products-content {
    padding: 40px;
    text-align: center;
  }
  
  .products-content h3 {
    font-size: 1.8rem;
  }
  
  .project-spec {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-primary {
    padding: 12px 26px;
    font-size: 0.95rem;
  }
  
  .products-nav {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  .products-prev {
    left: 20px;
  }
  
  .products-next {
    right: 20px;
  }
}

@media (max-width: 480px) {
  .products-slider {
    height: 350px;
  }
  
  .products-content {
    padding: 35px 25px;
  }
  
  .products-content h3 {
    font-size: 1.6rem;
  }
  
  .project-spec {
    font-size: 0.9rem;
  }
  
  .project-year {
    font-size: 0.85rem;
    padding: 3px 12px;
  }
  
  .products-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .products-prev {
    left: 15px;
  }
  
  .products-next {
    right: 15px;
  }
  
  .products-indicators {
    bottom: 20px;
  }
}

@media (max-width: 360px) {
  .products-slider {
    height: 300px;
  }

  .products-content {
    padding: 25px 15px;
  }

  .products-content h3 {
    font-size: 1.4rem;
  }

  .project-year {
    font-size: 0.8rem;
    padding: 2px 8px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .products-nav {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .products-prev {
    left: 10px;
  }

  .products-next {
    right: 10px;
  }

  .products-indicators {
    bottom: 15px;
    gap: 8px;
  }

  .products-indicators .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 768px) {
  .products-slider {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .products-slides {
    flex-direction: row; /* Tetap horizontal di mobile */
  }

  .products-slide {
    min-width: 100%;
    height: 300px;
  }

  .products-content {
    text-align: left;
    padding: 30px;
  }

  .products-content h3 {
    font-size: 1.5rem;
  }

  .project-year {
    margin-bottom: 10px;
  }

  .btn-primary {
    margin-top: 15px;
  }

  .products-nav {
    display: flex; /* Tampilkan navigasi di mobile */
  }

  .products-indicators {
    display: flex; /* Tampilkan indikator di mobile */
  }
}

/* ================= SECTION HEADER (UNIVERSAL) ================= */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================= PRODUCT GALLERY ================= */
.product-gallery {
  padding: 20px 0;
  background: var(--bg-light);
}

/* ================= GALLERY HEADER ================= */
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.header-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #d52b1e 0%, #a52714 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ================= PRODUCT CATEGORY ================= */
.product-category {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #e0e0e0;
}

.product-category:hover {
  box-shadow: 0 8px 30px rgba(213, 43, 30, 0.15);
}

/* Category Header */
.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: linear-gradient(90deg, #fefefe 0%, #f8f8f8 100%);
  border-bottom: 2px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.product-category:hover .category-header {
  background: linear-gradient(90deg, #fff5f5 0%, #fefefe 100%);
  border-bottom-color: #f0f0f0;
}

.product-category.active:hover .category-header {
  border-bottom-color: #d52b1e;
}

.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d52b1e 0%, #a52714 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.product-category.active .category-icon {
  box-shadow: 0 4px 15px rgba(213, 43, 30, 0.3);
}

.category-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 1.5;
}

.category-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  flex: 1;
}

.category-badge {
  background: linear-gradient(135deg, #d52b1e 0%, #a52714 100%);
  color: white;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Toggle Button - Statis tanpa animasi rotate */
.category-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d52b1e 0%, #a52714 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;  /* Hanya untuk scale dan shadow */
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(213, 43, 30, 0.3);
}

.category-toggle:hover {
  transform: scale(1.1);  /* Hanya scale, tanpa rotate */
  box-shadow: 0 4px 12px rgba(213, 43, 30, 0.4);
}

.toggle-sign {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  /* Tidak ada transition transform */
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 32px;
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    padding 0.4s ease;
}

.product-category:not(.active) .product-grid {
  max-height: 0;
  padding: 0 32px;
  opacity: 0;
}

/* Product cards */
.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 35px rgba(213, 43, 30, 0.2);
  z-index: 10;
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.15);
}

/* Overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(213, 43, 30, 0.95), rgba(165, 39, 20, 0.85), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay-content {
  color: white;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.product-card:hover .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.product-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.overlay-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 16px;
  max-height: 60px;
  overflow: hidden;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 0.85rem;
  opacity: 0.9;
}

.product-specs span {
  display: block;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.product-specs strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 28px;
  }
  .product-image {
    height: 280px;
  }
  .header-content h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .product-gallery {
    padding: 60px 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .product-image {
    height: 260px;
  }
  .category-header {
    padding: 20px 24px;
    flex-wrap: wrap;
  }
  .header-content h2 {
    font-size: 2rem;
  }
  .header-content p {
    font-size: 1rem;
  }
  .category-toggle {
    width: 32px;
    height: 32px;
  }
  .toggle-sign {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .product-image {
    height: 220px;
    border-radius: 12px;
  }
  .overlay-content h4 {
    font-size: 1.2rem;
  }
  .overlay-content p {
    font-size: 0.9rem;
    max-height: 48px;
  }
  .category-header {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .category-header h3 {
    font-size: 1.3rem;
  }
  .toggle-sign {
    font-size: 1.1rem;
  }
  .header-content h2 {
    font-size: 1.8rem;
  }
  .product-specs {
    grid-template-columns: 1fr;
  }
}

/* Remove red line from category headers */
.category-header {
  border-bottom: none !important;
}

.product-category .category-header {
  border-bottom: none !important;
}

/*================= CLIENTS SECTION ================= */
.clients-section {
  padding: 40px 0;
  background: var(--bg);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-label {
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.clients-title {
  font-size: 32px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--text);
}

.clients-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scrollClients 30s linear infinite;
}

.client-logo {
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}

.client-logo img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
}

.client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================= MODERN SEARCH POPUP ================= */
.search-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-backdrop-filter: blur(4px);  /* ← Sudah ada */
  backdrop-filter: blur(4px);           /* ← Sudah ada */
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  display: flex;
  gap: 8px;
  width: 90%;
  max-width: 520px;
  padding: 8px;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-popup.active .search-box {
  transform: translateY(0);
}

.search-box input {
  flex: 1;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  caret-color: var(--accent);
  transition: border-color 0.2s ease;
}

.search-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(213, 43, 30, 0.1);
}

.search-box input::placeholder {
  color: var(--text-light);
  opacity: 0.8;
}

.search-btn {
  padding: 12px 20px;
  background: #0aa6c0;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-btn:hover {
  background: #0893ab;
  transform: translateY(-1px);
}

.search-btn:active {
  transform: translateY(0);
}

body.dark-mode .search-btn {
  background: #0aa6c0;
}

body.dark-mode .search-btn:hover {
  background: #0893ab;
}

/* Mobile responsive for search */
@media (max-width: 768px) {
  .search-box {
    width: 95%;
    max-width: none;
    padding: 12px;
    flex-direction: column;
    gap: 12px;
  }

  .search-box input {
    font-size: 16px; /* Prevent zoom on iOS */
    width: 100%;
  }

  .search-btn {
    width: 100%;
    padding: 14px;
  }
}

  .search-btn {
    padding: 12px 16px;
    font-size: 14px;
  }


/* ================= FOOTER ================= */
.site-footer {
  background: var(--footer-bg);
  color: #ffffff;
  padding: 70px 0 30px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-left: -20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-brand img {
  width: 60px;
  height: auto;
  object-fit: contain;
}

.footer-brand span {
  letter-spacing: 0.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.footer-brand-column {
  max-width: 300px;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 12px;
}


.footer-item .iconify {
  font-size: 1.1rem;
  color: #ffffff;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-item a,
.footer-column a {
  color: #93c5fd;
  text-decoration: none;
}

.footer-item a:hover,
.footer-column a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #bfbfbf;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .footer-inner {
    margin-left: 0;
    padding: 0 20px;
  }
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-column {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    margin-left: 0;
    padding: 0 20px;
  }
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-column {
    width: 100%;
    box-sizing: border-box;
  }
}


/* ================= why best ================= */
.why-slider-section {
  padding: 0px 20px;
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  font-family: "Segoe UI", system-ui, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b91c1c;
  font-weight: 600;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-top: 8px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.why-slide {
  min-width: 33.333%;
  padding: 30px;
}

/* Judul + icon (stacked) */
.why-card h3 {
  display: flex;
  flex-direction: column;     /* ⬅️ icon di atas */
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

/* Icon */
.why-card h3 i {
  font-size: 28px;            /* icon lebih menonjol */
  color: #b91c1c;
}



/* Slider Buttons */
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #111827;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.85;
  z-index: 5; /* ⬅️ PENTING */
}


.slider-btn:hover {
  opacity: 1;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.slider-dots {
  text-align: center;
  margin-top: 30px;
}

.slider-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.slider-dots span.active {
  background: #b91c1c;
}

/* Responsive */
@media (max-width: 900px) {
  .why-slide {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .why-slide {
    min-width: 100%;
  }

  .section-title {
    font-size: 28px;
  }
}

/* Card */
.why-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  height: 100%;
}

/* Title inside card */
.why-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

/* Icon style */
.why-card h3 i {
  font-size: 18px;
  color: #b91c1c;
}

/* Paragraph */
.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 30px 20px;
  background: #f9fafb;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* FAQ LEFT */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .faq-toggle {
  font-size: 22px;
  color: #b91c1c;
  transition: transform .3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  transition: max-height .3s ease;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question .faq-toggle {
  transform: rotate(45deg);
}

/* FORM RIGHT */
.faq-right {
  background: #ffffff;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.question-form .form-group {
  margin-bottom: 18px;
}

.question-form input,
.question-form textarea,
.question-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.question-form input:focus,
.question-form textarea:focus,
.question-form select:focus {
  border-color: #b91c1c;
}

.form-btn {
  width: 100%;
  padding: 14px;
  background: #b91c1c;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.form-btn:hover {
  opacity: .9;
}

.form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  display: none;
  margin-top: 10px;
  padding: 12px 15px;
  border-radius: 5px;
  font-weight: 500;
  animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FOOTER ================= */
.site-footer {
  background: #720704;
  color: #ffffff;
  padding: 60px 0 30px;
  font-family: 'Inter', sans-serif;
}

.site-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== GRID FOOTER (DESKTOP) ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* ===== KOLOM LOGO & BRAND ===== */
.footer-logo-column {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo-column img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-company-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #d1d5db;
  max-width: 320px;
  margin: 0;
}

/* ===== FOOTER COLUMNS ===== */
.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #d52b1e;
  border-radius: 2px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 14px;
  transition: color 0.2s ease;
}

.footer-item:hover {
  color: #ffffff;
}

.footer-item .iconify,
.footer-item i {
  font-size: 18px;
  color: #ffffff;
  margin-top: 3px;
  flex-shrink: 0;
  min-width: 18px;
}

.footer-item a,
.footer-column a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-item a:hover,
.footer-column a:hover {
  color: #ffffff;
}

/* ===== SOSIAL MEDIA ===== */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social a:hover {
  background: #d52b1e;
  border-color: #d52b1e;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(213, 43, 30, 0.3);
}

.footer-social a i,
.footer-social a span,
.footer-social a svg {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: #ffffff;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: #bfbfbf;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
}

/* ================= RESPONSIVE FOOTER - VERTIKAL ================= */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .site-footer {
    padding: 50px 0 25px;
  }

  .site-footer .container {
    padding: 0 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-logo-column img {
    width: 130px;
  }

  .footer-company-name {
    font-size: 20px;
  }
}

/* Mobile (≤ 767px) - VERTIKAL STACKED */
@media (max-width: 767px) {
  .site-footer {
    padding: 40px 0 20px;
  }

  .site-footer .container {
    padding: 0 20px;
  }

  /* Ubah ke layout vertikal */
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 30px;
  }

  /* Logo di atas */
  .footer-logo-column {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-logo-column img {
    width: 120px;
  }

  .footer-brand-column {
    gap: 14px;
  }

  .footer-desc {
    font-size: 14px;
  }

  /* Semua kolom full width */
  .footer-column {
    width: 100%;
  }

  .footer-column h4 {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .footer-column h4::after {
    width: 35px;
  }

  .footer-item {
    font-size: 13px;
    gap: 10px;
    margin-bottom: 12px;
  }

  .footer-item .iconify,
  .footer-item i {
    font-size: 16px;
    min-width: 16px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-social a i,
  .footer-social a span,
  .footer-social a svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }

  .footer-bottom {
    font-size: 13px;
    padding-top: 20px;
  }
}

/* Mobile Small (≤ 480px) */
@media (max-width: 480px) {
  .site-footer {
    padding: 35px 0 18px;
  }

  .site-footer .container {
    padding: 0 16px;
  }

  .footer-logo-column img {
    width: 100px;
  }

  .footer-company-name {
    font-size: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-column h4 {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer-column h4::after {
    width: 30px;
    height: 1.5px;
  }

  .footer-item {
    font-size: 12.5px;
    line-height: 1.7;
    gap: 10px;
    margin-bottom: 10px;
  }

  .footer-item .iconify,
  .footer-item i {
    font-size: 15px;
    min-width: 15px;
  }

  .footer-social {
    gap: 8px;
    margin-top: 14px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-social a i,
  .footer-social a span,
  .footer-social a svg {
    font-size: 15px;
    width: 15px;
    height: 15px;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 18px;
  }

  .footer-grid {
    gap: 28px;
  }
}

/* Mobile Extra Small (≤ 360px) */
@media (max-width: 359px) {
  .site-footer {
    padding: 30px 0 15px;
  }

  .site-footer .container {
    padding: 0 12px;
  }

  .footer-logo-column img {
    width: 90px;
  }

  .footer-company-name {
    font-size: 16px;
  }

  .footer-desc {
    font-size: 12px;
  }

  .footer-column h4 {
    font-size: 13px;
  }

  .footer-item {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}